home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / conclefx.sql < prev    next >
Text File  |  2000-05-12  |  752b  |  19 lines

  1. /* RCSVER $Id: conclefx.sql,v 1.2 1999-02-24 11:01:09-06 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        conclefx.sql
  6. * Date:        02/17/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the conclefx table. This table contains the available
  9. *        visual effects that can be assigned to the customer display
  10. *        (concluding effects).
  11. * Changes:
  12. ************************************************************************* */
  13. CREATE TABLE conclefx
  14. (
  15.     effect  NUMBER(38),    /* ID of this effect */
  16.         descr   VARCHAR2(30),    /* Description of this effect */
  17.                 CONSTRAINT pk_conclefx PRIMARY KEY (effect)
  18. );
  19.